home *** CD-ROM | disk | FTP | other *** search
/ Great Explorers / Great Explorers.iso / title.inc < prev   
Text File  |  1996-10-02  |  2KB  |  67 lines

  1. rem *** Constants for disc
  2.  
  3. rem *** Promo disc flags
  4.  
  5. '$ifdef IsPromo
  6.  
  7. '$define IsUsingMenu
  8.  
  9. '$endif
  10.  
  11. rem *** Title disc flags
  12.  
  13. '$ifdef IsTitle
  14.  
  15. '$define IsRunAdvertOnStartUp
  16.  
  17. '$define IsUsingOnLineReg
  18.  
  19. '$endif
  20.  
  21. rem *** Common constants
  22.  
  23. const Dir_Group        = ""
  24.  
  25. rem *** Constants specific to title
  26.  
  27. '$define IsExplorers
  28.  
  29. const Dir_ExplorersRoot       = "\exp"
  30. const INI_Explorers        = "exp.INI"
  31. const DLL_Explorers        = "exp.DLL"
  32.  
  33. const Icon_Explorers        = "\explorer.ico"
  34.  
  35. const Sect_ExplorersBinary        = "FlagTower Explorers binaries"
  36. const Sect_ExplorersEngine        = "FlagTower Explorers AV Engine"
  37. const Sect_ExplorersAccusoftGold    = "FlagTower Explorers Accusoft Pro Gold"
  38. const Sect_ExplorersDatabase        = "FlagTower Explorers database"
  39. const Sect_ExplorersCDilla        = "FlagTower C-Dilla Explorers"
  40.  
  41. global Path_ExplorersRoot as string
  42. global Path_ExplorersBinary as string
  43. global Path_ExplorersEngine as string
  44. global Path_ExplorersDatabase as string
  45.  
  46. rem *** Constants specific to First World War
  47.  
  48. '$define IsAdvert
  49.  
  50. const Dir_AdvertRoot       = "\Advert"
  51. const INI_Advert        = "ADVERT.INI"
  52. const DLL_Advert        = "ADVERT.DLL"
  53.  
  54. const Icon_Advert        = "1"
  55.  
  56. const Sect_AdvertBinary        = "FlagTower Advert binaries"
  57. const Sect_AdvertEngine        = "FlagTower Advert AV Engine"
  58. const Sect_AdvertAccusoftGold    = "FlagTower Advert Accusoft Pro Gold"
  59. const Sect_AdvertDatabase    = "FlagTower Advert database"
  60. const Sect_AdvertCDilla        = "FlagTower C-Dilla Advert"
  61.  
  62. global Path_AdvertRoot as string
  63. global Path_AdvertBinary as string
  64. global Path_AdvertEngine as string
  65. global Path_AdvertDatabase as string
  66.  
  67.